home *** CD-ROM | disk | FTP | other *** search
- ;this script copies an updated NETX driver to the local
- ;workstation.
- DEFINE "TEMP" STRING
- DEFINE "VALUE" STRING
- ;the script assumes the shell files are in the root directory.
- ;you can substitute an explicit path to the end user's shell
- ;files for [BOOT_ROOT] in the line below.
- FINDFILE [BOOT_ROOT] "NETX.*" TEMP
- NUMTOSTR VALUE [RETVAL]
- WRITELN VALUE
- IF [RETVAL] = 0
- RENAME [BOOT_ROOT] "NETX.*" [BOOT_ROOT] "*.OLD"
- ;substitute the source path for the new NETX file for "F:\test\" below
- COPY "F:\TEST\" "netx.*" [BOOT_ROOT] "netx.*"
- ENDIF
-
-